Blazor | ComponentOne
C1.Blazor.Core Assembly / C1.Blazor.Core Namespace / Range<T> Class / IsContiguousWith Method
The range to check.

In This Topic
    IsContiguousWith Method
    In This Topic
    Indicates if this range is contiguous with range.
    Syntax
    'Declaration
     
    
    Public Function IsContiguousWith( _
       ByVal range As Range(Of T) _
    ) As Boolean
    public bool IsContiguousWith( 
       Range<T> range
    )

    Parameters

    range
    The range to check.

    Return Value

    true if the two ranges are contiguous, false otherwise.
    Remarks
    Contiguous can mean containing, overlapping, or being next to.
    See Also